.calendar {
  display: none;
  margin: 0 auto;
  /* background-color: #fafafa; */
  border-radius: 6px;
}
.calendar-title {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  padding: 10px 0;
}
.calendar-title span {
  display: block;
  user-select: none;
}
.calendar-title .arrow-prev, .calendar-title .arrow-next {
  background-color: #E16144;
  cursor: pointer;
  color: #fff;
  padding: 0 8px;
  background-image: url('../images/zhengwufuwu/arrow_r.png');
  background-position: center center;
  background-size: 6px;
  background-repeat: no-repeat;
}
.calendar-title .arrow-prev {
  border-radius: 0 3px 3px 0;
  margin-right: 10px;
  transform: rotate(180deg);

}
.calendar-title .arrow-next {
  border-radius: 0 3px 3px 0;
  margin-left: 10px;
}
.calendar-week {
  background: #407FC6;
  color: #fff;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 18px;
}
.calendar-week .item,
.calendar-date .item {
    width: 14.28%;
}

.calendar-date .item {
    height: 60px;
    line-height: 60px;
    font-size: 24px;
}

.calendar-date .item em {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    position: relative;
    font-size: 18px;
    font-style: normal;
    color: #888;
    transition: .1s;
}

.calendar-date .item em:hover {
  background: #509aef;
  color: #fff;
}

.calendar-date .item.item-curDay em {
    background: #EDF6FF;
    color: #125CB1;
}

.calendar-date .item.on em {
    background: #125CB1;
    color: #fff;
}

.calendar-date .item.has em::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    display: block;
    width: 7px;
    height: 7px;
    background: #F9930D;
    border-radius: 50%;
}
.calendar-week,
.calendar-date {
  overflow: hidden;
}
.calendar-week .item,
.calendar-date .item {
  float: left;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.calendar-date .item {
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}
.calendar-date .item-curMonth em {
  color: #333;
}

@media screen and (max-width:768px) {
  .calendar-date .item {
      height: 40px;
      line-height: 40px;
      font-size: 24px;
  }

  .calendar-date .item em {
      height: 36px;
      width: 36px;
      line-height: 36px;
      border-radius: 50%;
  }
}